home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / varia / egebook.lha / ege.book / 5 / bool.h next >
C/C++ Source or Header  |  1992-06-05  |  78b  |  7 lines

  1. #ifndef _bool_h
  2. #define _bool_h 1
  3.  
  4. enum bool { FALSE = 0, TRUE = 1 };
  5.  
  6. #endif
  7.